home *** CD-ROM | disk | FTP | other *** search
/ PC Gamer (Italian) 27 / PC Gamer IT CD 27.iso / MEDIA / STORE.DXR / Internal_8_retreat.ls < prev    next >
Encoding:
Text File  |  1997-12-01  |  403 b   |  20 lines

  1. on mouseEnter me
  2.   cursor(280)
  3.   set the text of field "rollover text" to "Click here to move backwards."
  4.   set the visible of sprite 49 to 1
  5. end
  6.  
  7. on mouseLeave me
  8.   cursor(-1)
  9.   set the text of field "rollover Text" to EMPTY
  10. end
  11.  
  12. on mouseDown me
  13.   set the member of sprite the currentSpriteNum to "back glow"
  14. end
  15.  
  16. on mouseUp me
  17.   set the member of sprite the currentSpriteNum to "back"
  18.   go("01a")
  19. end
  20.